home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Merciful 2
/
Merciful - Disc 2.iso
/
software
/
i
/
imagefxv2.1a.lha
/
ImageFX
/
Rexx
/
ScanMultiple.ifx
< prev
next >
Wrap
Text File
|
1996-03-02
|
681b
|
42 lines
/*
* $VER: ScanMultiple 2.0.0 (8.6.93)
*
* Arexx program for the ImageFX image processing system.
* Written by Thomas Krehbiel
*
* Updated for ImageFX 2.0.
*
* Scan multiple monochrome pages from an Epson ES800C with a
* document feeder attachment. Files as saved as individual
* 2-color ILBM's in RAM:.
*
*/
OPTIONS RESULTS
SetRender Foreign
IF rc ~= 0 THEN EXIT
Render Mode Hires Lace
Render Colors 2
pagenum = 1
DO FOREVER
Message 'Scanning Page' pagenum
/* requires 2.0 */
Scanner DetailScan Mono Dpi 100 ADF
IF rc ~= 0 THEN LEAVE
Render Go
SaveRenderedAs ILBM 'ram:page'||RIGHT('000'||pagenum,4)
pagenum = pagenum + 1
END
EXIT